home *** CD-ROM | disk | FTP | other *** search
- onClipEvent(enterFrame){
- if(_root.botfire)
- {
- this._visible = true;
- this._x -= 15;
- }
- if(this._x < _root.sheep._x)
- {
- if(!_root.hitarea9)
- {
- _root.bot9.gotoAndPlay(1);
- }
- if(_root.inair)
- {
- _root.bot9.gotoAndPlay(1);
- }
- if(!_root.inair)
- {
- _root.sheep.gotoAndPlay(14);
- _root.bot9.gotoAndPlay(1);
- _root.sheeplife -= _root.sheeplifeclaculate / 9;
- _root.life.nextFrame();
- }
- if(_root.sheeplife < 1)
- {
- _root.sheepdeath = true;
- _root.sheep.gotoAndStop(8);
- _root.bot9.gotoAndPlay(1);
- }
- this._x = _root._root.bot9._x;
- _root.botfire = false;
- this._visible = false;
- }
- if(this._x < 0)
- {
- if(_root.notdead9)
- {
- this._x = _root._root.bot9._x;
- _root.botfire = true;
- _root.bot9.gotoAndPlay(1);
- this._visible = false;
- }
- }
- }
-